# clearTimeout

# 语法

clearTimeout(timerID)

# 参数说明

# timerID

类型 默认值 必填 说明 最低支持版本
number 使用 setTimeout 生成的 ID。 1.0.0

# 返回值

# 代码示例

var timer = setTimeout(() => {
  console.log("hello");
}, 10000);
clearTimeout(timer);